-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
samples: bluetooth: Add Channel Sounding Reflector with Ranging Responder sample #18894
samples: bluetooth: Add Channel Sounding Reflector with Ranging Responder sample #18894
Conversation
CI InformationTo view the history of this post, clich the 'edited' button above Inputs:Sources:sdk-nrf: PR head: b5d96ffdc0c73ef34fd67c6f3014cedc2bca1bba more detailssdk-nrf:
Github labels
List of changed files detected by CI (7)
Outputs:ToolchainVersion: f51bdba1d9 Test Spec & Results: ✅ Success; ❌ Failure; 🟠 Queued; 🟡 Progress; ◻️ Skipped;
|
07bf10d
to
d9e2653
Compare
99663ae
to
4a70e8a
Compare
You can find the documentation preview for this PR at this link. It will be updated about 10 minutes after the documentation build succeeds. Note: This comment is automatically posted by the Documentation Publish GitHub Action. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changelog entry needed.
4a70e8a
to
3e4452e
Compare
@nrfconnect/ncs-co-build-system @nrfconnect/ncs-code-owners Please review |
3e4452e
to
5823239
Compare
5823239
to
ceba25b
Compare
Ping @nrfconnect/ncs-co-build-system @nrfconnect/ncs-code-owners |
{ | ||
int err; | ||
|
||
printk("Starting Channel Sounding Reflector Sample\n"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
replace prink with LOG_* calls instead
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think by default LOG_* and printk() use the same backend anyway. (CONFIG_LOG selects CONFIG_PRINTK => makes CONFIG_LOG_PRINTK default to y).
There's also many existing samples that use printk()
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated to use logging now but I agree, would be nice if all the samples were consistent in their logger usage
This sample can be used to set up a Channel Sounding Reflector with the GATT Ranging Responder service. A Channel Sounding Initiator with Ranging Requestor can connect to this sample to receive CS Ranging Data and perform distance estimation. Signed-off-by: Aleksandar Stanoev <[email protected]>
ceba25b
to
b5d96ff
Compare
This sample can be used to set up a Channel Sounding Reflector with the GATT Ranging Responder service.
A Channel Sounding Initiator with Ranging Requestor can connect to this sample to receive CS Ranging Data and perform distance estimation.
The corresponding initiator sample will follow shortly and will update the docs with exact path references.